home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Misc / Wood.0.72 / Sources / Utilities.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-29  |  625 b   |  17 lines

  1. #import <appkit/appkit.h>
  2.  
  3. #define square(x,y)     {y = x * x;}
  4. #define cube(x,y)    {y = x * x * x;}
  5.  
  6. extern const char *localString(const char *aString);
  7. extern const char *appDirectory();
  8. extern BOOL isThereSwapSpace(int imageSize);
  9. extern char *stripnl(char *s);
  10. extern char *execstr(char *s);
  11. extern char **addFile(const char *file, char **list, int count, NXZone *zone);
  12. extern void freeList(char **list);
  13. extern NXRect *calcFrame(id printInfo, NXRect *viewRect);
  14. extern void fillMemory(unsigned char *ptr, int numBytes);
  15. extern void strtoRect( char *, NXRect * );
  16. extern BOOL includesType(const NXAtom *types, NXAtom type);
  17.